home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / futils / futils~1 / src / file31s.zoo / file3.1 / man / makefile.in < prev    next >
Encoding:
Makefile  |  1991-10-17  |  1.5 KB  |  58 lines

  1. # Makefile for GNU fileutils documentation.
  2. # Do not use this makefile directly, but only from `../Makefile'.
  3. # Copyright (C) 1986-1991 Free Software Foundation, Inc.
  4.  
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9.  
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14.  
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. SHELL = /bin/sh
  20.  
  21. srcdir = @srcdir@/man
  22. @VPATH@
  23.  
  24. MANFILES = gchgrp.1 gchown.1 gchmod.1 gcp.1 gdd.1 gdf.1 gdu.1 ginstall.1 \
  25. gln.1 gls.1 gmkdir.1 gmkfifo.1 gmknod.1 gmv.1 grm.1 grmdir.1 gtouch.1 
  26.  
  27. DISTFILES = Makefile.in $(MANFILES)
  28.  
  29. all:
  30. .PHONY: all
  31.  
  32. install: all
  33.     for f in $(MANFILES); do \
  34.     if test -f $$f; then src=.; else src=$(srcdir); fi; \
  35.     ../src/ginstall -m 644 $$src/$$f \
  36.     $(mandir)/`basename $$f 1`$(manext); done
  37. .PHONY: install
  38.  
  39. tags:
  40. .PHONY: tags
  41.  
  42. TAGS:
  43. .PHONY: TAGS
  44.  
  45. clean:
  46. .PHONY: clean
  47.  
  48. distclean: clean
  49.     rm -f Makefile
  50. .PHONY: distclean
  51.  
  52. realclean: distclean
  53. .PHONY: realclean
  54.  
  55. dist:
  56.     ln $(DISTFILES) ../`cat ../.fname`/man
  57. .PHONY: dist
  58.